home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / rexx / celsiustofahrenheit.rexx next >
OS/2 REXX Batch file  |  1999-07-12  |  784b  |  42 lines

  1. /* RUN "rx MCP:rexx/CelsiusToFahrenheit.rexx %n"   */
  2.  
  3. Arg node_number                         /* node we were run from */
  4. Host = 'MCPREXX.'node_number            /* the Trion MCP Arexx port */
  5. Options results
  6. Address value host
  7. options failat 15
  8.  
  9.  
  10. /* say "node: "node_number */
  11. if node_number = "" then do
  12.    say "error .. rexx script not started with %n on command line"
  13.    exit 1
  14. end
  15.  
  16.  
  17. ReadString "ID 14"
  18. Celsius = result
  19.  
  20. if Celsius < -273 then do
  21.    Celsius = -273
  22.    WriteString "14" Celsius
  23. end
  24.  
  25. /* say "Celsius:" Celsius */
  26.  
  27. Fahrenheit = (Celsius * (9/5)) + 32
  28.  
  29. /* say "Fahrenheit:" Fahrenheit */
  30.  
  31. /* WriteString '13, Fahrenheit' */
  32. WriteString "13" Fahrenheit
  33.  
  34.  
  35. exit 0                         /* einde programma */
  36.  
  37.  
  38.  
  39. test:          /*  een functie: 'call test' */
  40. return 0
  41.  
  42.